home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1995-03-07 | 1.2 KB | 26 lines | [TEXT/3PRM] |
- definition module Window2;
-
- // Version 0.8 to 1.0
-
- import deltaIOSystem, deltaEventIO;
-
-
- :: ScrollBarChange
- = ChangeThumbs Int Int | ChangeHThumb Int | ChangeVThumb Int
- | ChangeScrolls Int Int | ChangeHScroll Int | ChangeVScroll Int
- | ChangeHBar Int Int | ChangeVBar Int Int;
-
-
- ChangeScrollBar :: !WindowId !ScrollBarChange !*s !(IOState *s) -> (!*s, !IOState *s);
- ChangePictureDomain :: !WindowId !PictureDomain !*s !(IOState *s) -> (!*s, !IOState *s);
- DrawInWindowFrame :: !WindowId !(UpdateFunction *s) !*s !(IOState *s) -> (!*s, !IOState *s);
- WindowGetFrame :: !WindowId !(IOState *s) -> (!PictureDomain, !IOState *s);
- WindowGetPos :: !WindowId !(IOState *s) -> (!WindowPos, !IOState *s);
- GetActiveWindow :: !(IOState *s) -> (!Bool, !WindowId, !IOState *s);
-
- ChangeActiveScrollBar :: !ScrollBarChange !*s !(IOState *s) -> (!*s, !IOState *s);
- ChangeActivePictureDomain :: !PictureDomain !*s !(IOState *s) -> (!*s, !IOState *s);
- DrawInActiveWindowFrame :: !(UpdateFunction *s) !*s !(IOState *s) -> (!*s, !IOState *s);
- ActiveWindowGetFrame :: !(IOState *s) -> (!PictureDomain, !IOState *s);
- ActiveWindowGetPos :: !(IOState *s) -> (!WindowPos, !IOState *s);
-